Convert GailCheck(Sub)MenuItem to GtkAccessible classes
authorMatthias Clasen <mclasen@redhat.com>
Fri, 1 Jul 2011 16:38:39 +0000 (12:38 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Tue, 5 Jul 2011 20:08:57 +0000 (16:08 -0400)
This is along the same lines as the previous commit,
with the same caveat.

16 files changed:
gtk/a11y/Makefile.am
gtk/a11y/gail.c
gtk/a11y/gailcheckmenuitem.c [deleted file]
gtk/a11y/gailcheckmenuitem.h [deleted file]
gtk/a11y/gailchecksubmenuitem.c [deleted file]
gtk/a11y/gailchecksubmenuitem.h [deleted file]
gtk/a11y/gtkcheckmenuitemaccessible.c [new file with mode: 0644]
gtk/a11y/gtkcheckmenuitemaccessible.h [new file with mode: 0644]
gtk/a11y/gtkchecksubmenuitemaccessible.c [new file with mode: 0644]
gtk/a11y/gtkchecksubmenuitemaccessible.h [new file with mode: 0644]
gtk/a11y/gtkradiomenuitemaccessible.c
gtk/a11y/gtkradiomenuitemaccessible.h
gtk/a11y/gtkradiosubmenuitemaccessible.c
gtk/a11y/gtkradiosubmenuitemaccessible.h
gtk/gtkcheckmenuitem.c
gtk/gtkradiomenuitem.c

index a68d3c9b3b6a733e81c5d04463d89c0d3304fbbf..f3103050b4a7fae60a32e8cfe820d188bfefbc40 100644 (file)
@@ -10,8 +10,8 @@ gail_c_sources =                      \
        gailbutton.c                    \
        gailcell.c                      \
        gailcellparent.c                \
-       gailcheckmenuitem.c             \
-       gailchecksubmenuitem.c          \
+       gtkcheckmenuitemaccessible.c    \
+       gtkchecksubmenuitemaccessible.c \
        gtkcomboboxaccessible.c         \
        gailcontainer.c                 \
        gailcontainercell.c             \
@@ -61,8 +61,8 @@ gail_private_h_sources =              \
        gailbutton.h                    \
        gailcell.h                      \
        gailcellparent.h                \
-       gailcheckmenuitem.h             \
-       gailchecksubmenuitem.h          \
+       gtkcheckmenuitemaccessible.h    \
+       gtkchecksubmenuitemaccessible.h \
        gtkcomboboxaccessible.h         \
        gailcontainercell.h             \
        gailcontainer.h                 \
index 92b35007a1bd8ceb02582f1f02617c6c9007b640..bcb867b6727780caadf811147ffd5d24830aa89d 100644 (file)
@@ -26,7 +26,6 @@
 #include "gailbooleancell.h"
 #include "gailbutton.h"
 #include "gailcell.h"
-#include "gailcheckmenuitem.h"
 #include "gailcontainer.h"
 #include "gailcontainercell.h"
 #include "gailimagecell.h"
@@ -91,7 +90,6 @@ GAIL_IMPLEMENT_FACTORY_WITH_FUNC (GAIL_TYPE_MENU_ITEM, GailMenuItem, gail_menu_i
 GAIL_IMPLEMENT_FACTORY (GAIL_TYPE_MENU_SHELL, GailMenuShell, gail_menu_shell, GTK_TYPE_MENU_SHELL)
 GAIL_IMPLEMENT_FACTORY (GAIL_TYPE_MENU, GailMenu, gail_menu, GTK_TYPE_MENU)
 GAIL_IMPLEMENT_FACTORY (GAIL_TYPE_WINDOW, GailWindow, gail_window, GTK_TYPE_BIN)
-GAIL_IMPLEMENT_FACTORY_WITH_FUNC (GAIL_TYPE_CHECK_MENU_ITEM, GailCheckMenuItem, gail_check_menu_item, gail_check_menu_item_new)
 GAIL_IMPLEMENT_FACTORY_WITH_FUNC_DUMMY (GAIL_TYPE_RENDERER_CELL, GailRendererCell, gail_renderer_cell, GTK_TYPE_CELL_RENDERER, gail_renderer_cell_new)
 GAIL_IMPLEMENT_FACTORY_WITH_FUNC_DUMMY (GAIL_TYPE_BOOLEAN_CELL, GailBooleanCell, gail_boolean_cell, GTK_TYPE_CELL_RENDERER_TOGGLE, gail_boolean_cell_new)
 GAIL_IMPLEMENT_FACTORY_WITH_FUNC_DUMMY (GAIL_TYPE_IMAGE_CELL, GailImageCell, gail_image_cell, GTK_TYPE_CELL_RENDERER_PIXBUF, gail_image_cell_new)
@@ -847,7 +845,6 @@ gail_accessibility_module_init (void)
   GAIL_WIDGET_SET_FACTORY (GTK_TYPE_CELL_RENDERER_TOGGLE, gail_boolean_cell);
   GAIL_WIDGET_SET_FACTORY (GTK_TYPE_CELL_RENDERER_PIXBUF, gail_image_cell);
   GAIL_WIDGET_SET_FACTORY (GTK_TYPE_CELL_RENDERER, gail_renderer_cell);
-  GAIL_WIDGET_SET_FACTORY (GTK_TYPE_CHECK_MENU_ITEM, gail_check_menu_item);
 
   atk_focus_tracker_init (gail_focus_tracker_init);
   focus_tracker_id = atk_add_focus_tracker (gail_focus_tracker);
diff --git a/gtk/a11y/gailcheckmenuitem.c b/gtk/a11y/gailcheckmenuitem.c
deleted file mode 100644 (file)
index 52b588f..0000000
+++ /dev/null
@@ -1,159 +0,0 @@
-/* GAIL - The GNOME Accessibility Implementation Library
- * Copyright 2002, 2003 Sun Microsystems Inc.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the
- * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
- */
-
-#include "config.h"
-
-#include <string.h>
-#include "gailcheckmenuitem.h"
-#include "gailchecksubmenuitem.h"
-
-static void      gail_check_menu_item_class_init        (GailCheckMenuItemClass *klass);
-
-static void      gail_check_menu_item_init              (GailCheckMenuItem      *item);
-
-static void      gail_check_menu_item_toggled_gtk       (GtkWidget              *widget);
-
-static void      gail_check_menu_item_real_notify_gtk   (GObject                *obj,
-                                                         GParamSpec             *pspec);
-
-static void      gail_check_menu_item_real_initialize   (AtkObject              *obj,
-                                                         gpointer               data);
-
-static AtkStateSet* gail_check_menu_item_ref_state_set  (AtkObject              *accessible);
-
-G_DEFINE_TYPE (GailCheckMenuItem, gail_check_menu_item, GAIL_TYPE_MENU_ITEM)
-
-static void
-gail_check_menu_item_class_init (GailCheckMenuItemClass *klass)
-{
-  GailWidgetClass *widget_class;
-  AtkObjectClass *class = ATK_OBJECT_CLASS (klass);
-
-  widget_class = (GailWidgetClass*)klass;
-  widget_class->notify_gtk = gail_check_menu_item_real_notify_gtk;
-
-  class->ref_state_set = gail_check_menu_item_ref_state_set;
-  class->initialize = gail_check_menu_item_real_initialize;
-}
-
-static void
-gail_check_menu_item_init (GailCheckMenuItem *item)
-{
-}
-
-AtkObject* 
-gail_check_menu_item_new (GtkWidget *widget)
-{
-  GObject *object;
-  AtkObject *accessible;
-
-  g_return_val_if_fail (GTK_IS_CHECK_MENU_ITEM (widget), NULL);
-
-  if (gtk_menu_item_get_submenu (GTK_MENU_ITEM (widget)))
-    return gail_check_sub_menu_item_new (widget);
-
-  object = g_object_new (GAIL_TYPE_CHECK_MENU_ITEM, NULL);
-
-  accessible = ATK_OBJECT (object);
-  atk_object_initialize (accessible, widget);
-  return accessible;
-}
-
-static void
-gail_check_menu_item_real_initialize (AtkObject *obj,
-                                      gpointer  data)
-{
-  ATK_OBJECT_CLASS (gail_check_menu_item_parent_class)->initialize (obj, data);
-
-  g_signal_connect (data,
-                    "toggled",
-                    G_CALLBACK (gail_check_menu_item_toggled_gtk),
-                    NULL);
-
-  obj->role = ATK_ROLE_CHECK_MENU_ITEM;
-}
-
-static void
-gail_check_menu_item_toggled_gtk (GtkWidget       *widget)
-{
-  AtkObject *accessible;
-  GtkCheckMenuItem *check_menu_item;
-
-  check_menu_item = GTK_CHECK_MENU_ITEM (widget);
-
-  accessible = gtk_widget_get_accessible (widget);
-  atk_object_notify_state_change (accessible, ATK_STATE_CHECKED, 
-                                  gtk_check_menu_item_get_active (check_menu_item));
-} 
-
-static AtkStateSet*
-gail_check_menu_item_ref_state_set (AtkObject *accessible)
-{
-  AtkStateSet *state_set;
-  GtkCheckMenuItem *check_menu_item;
-  GtkWidget *widget;
-
-  state_set = ATK_OBJECT_CLASS (gail_check_menu_item_parent_class)->ref_state_set (accessible);
-  widget = gtk_accessible_get_widget (GTK_ACCESSIBLE (accessible));
-  if (widget == NULL)
-    return state_set;
-
-  check_menu_item = GTK_CHECK_MENU_ITEM (widget);
-
-  if (gtk_check_menu_item_get_active (check_menu_item))
-    atk_state_set_add_state (state_set, ATK_STATE_CHECKED);
-
-  if (gtk_check_menu_item_get_inconsistent (check_menu_item))
-    {
-      atk_state_set_remove_state (state_set, ATK_STATE_ENABLED);
-      atk_state_set_add_state (state_set, ATK_STATE_INDETERMINATE);
-    }
-  return state_set;
-}
-
-static void
-gail_check_menu_item_real_notify_gtk (GObject           *obj,
-                                    GParamSpec        *pspec)
-{
-  GtkCheckMenuItem *check_menu_item = GTK_CHECK_MENU_ITEM (obj);
-  AtkObject *atk_obj;
-  gboolean sensitive;
-  gboolean inconsistent;
-
-  atk_obj = gtk_widget_get_accessible (GTK_WIDGET (check_menu_item));
-  sensitive = gtk_widget_get_sensitive (GTK_WIDGET (check_menu_item));
-  inconsistent = gtk_check_menu_item_get_inconsistent (check_menu_item);
-
-  if (strcmp (pspec->name, "inconsistent") == 0)
-    {
-      atk_object_notify_state_change (atk_obj, ATK_STATE_INDETERMINATE, inconsistent);
-      atk_object_notify_state_change (atk_obj, ATK_STATE_ENABLED, (sensitive && !inconsistent));
-    }
-  else if (strcmp (pspec->name, "sensitive") == 0)
-    {
-      /* Need to override gailwidget behavior of notifying for ENABLED */
-      atk_object_notify_state_change (atk_obj, ATK_STATE_SENSITIVE, sensitive);
-      atk_object_notify_state_change (atk_obj, ATK_STATE_ENABLED, (sensitive && !inconsistent));
-    }
-  else
-    GAIL_WIDGET_CLASS (gail_check_menu_item_parent_class)->notify_gtk (obj, pspec);
-}
diff --git a/gtk/a11y/gailcheckmenuitem.h b/gtk/a11y/gailcheckmenuitem.h
deleted file mode 100644 (file)
index c62f988..0000000
+++ /dev/null
@@ -1,53 +0,0 @@
-/* GAIL - The GNOME Accessibility Implementation Library
- * Copyright 2002 Sun Microsystems Inc.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public
- * License along with this library; if not, write to the
- * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
- */
-
-#ifndef __GAIL_CHECK_MENU_ITEM_H__
-#define __GAIL_CHECK_MENU_ITEM_H__
-
-#include "gailmenuitem.h"
-
-G_BEGIN_DECLS
-
-#define GAIL_TYPE_CHECK_MENU_ITEM              (gail_check_menu_item_get_type ())
-#define GAIL_CHECK_MENU_ITEM(obj)              (G_TYPE_CHECK_INSTANCE_CAST ((obj), GAIL_TYPE_CHECK_MENU_ITEM, GailCheckMenuItem))
-#define GAIL_CHECK_MENU_ITEM_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), GAIL_TYPE_CHECK_MENU_ITEM, GailCheckMenuItemClass))
-#define GAIL_IS_CHECK_MENU_ITEM(obj)           (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GAIL_TYPE_CHECK_MENU_ITEM))
-#define GAIL_IS_CHECK_MENU_ITEM_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), GAIL_TYPE_CHECK_MENU_ITEM))
-#define GAIL_CHECK_MENU_ITEM_GET_CLASS(obj)    (G_TYPE_INSTANCE_GET_CLASS ((obj), GAIL_TYPE_CHECK_MENU_ITEM, GailCheckMenuItemClass))
-
-typedef struct _GailCheckMenuItem              GailCheckMenuItem;
-typedef struct _GailCheckMenuItemClass         GailCheckMenuItemClass;
-
-struct _GailCheckMenuItem
-{
-  GailMenuItem parent;
-};
-
-GType gail_check_menu_item_get_type (void);
-
-struct _GailCheckMenuItemClass
-{
-  GailMenuItemClass parent_class;
-};
-
-AtkObject* gail_check_menu_item_new (GtkWidget *widget);
-
-G_END_DECLS
-
-#endif /* __GAIL_CHECK_MENU_ITEM_H__ */
diff --git a/gtk/a11y/gailchecksubmenuitem.c b/gtk/a11y/gailchecksubmenuitem.c
deleted file mode 100644 (file)
index a9e22f5..0000000
+++ /dev/null
@@ -1,156 +0,0 @@
-/* GAIL - The GNOME Accessibility Implementation Library
- * Copyright 2002 Sun Microsystems Inc.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the
- * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
- */
-
-#include "config.h"
-
-#include <string.h>
-#include <gtk/gtk.h>
-#include "gailchecksubmenuitem.h"
-
-static void      gail_check_sub_menu_item_class_init        (GailCheckSubMenuItemClass *klass);
-
-static void      gail_check_sub_menu_item_init              (GailCheckSubMenuItem   *item);
-
-static void      gail_check_sub_menu_item_toggled_gtk       (GtkWidget              *widget);
-
-static void      gail_check_sub_menu_item_real_notify_gtk   (GObject                *obj,
-                                                             GParamSpec             *pspec);
-
-static void      gail_check_sub_menu_item_real_initialize   (AtkObject              *obj,
-                                                             gpointer               data);
-
-static AtkStateSet* gail_check_sub_menu_item_ref_state_set  (AtkObject              *accessible);
-
-G_DEFINE_TYPE (GailCheckSubMenuItem, gail_check_sub_menu_item, GAIL_TYPE_SUB_MENU_ITEM)
-
-static void
-gail_check_sub_menu_item_class_init (GailCheckSubMenuItemClass *klass)
-{
-  GailWidgetClass *widget_class;
-  AtkObjectClass *class = ATK_OBJECT_CLASS (klass);
-
-  widget_class = (GailWidgetClass*)klass;
-  widget_class->notify_gtk = gail_check_sub_menu_item_real_notify_gtk;
-
-  class->ref_state_set = gail_check_sub_menu_item_ref_state_set;
-  class->initialize = gail_check_sub_menu_item_real_initialize;
-}
-
-static void
-gail_check_sub_menu_item_init (GailCheckSubMenuItem *item)
-{
-}
-
-AtkObject* 
-gail_check_sub_menu_item_new (GtkWidget *widget)
-{
-  GObject *object;
-  AtkObject *accessible;
-
-  g_return_val_if_fail (GTK_IS_CHECK_MENU_ITEM (widget), NULL);
-
-  object = g_object_new (GAIL_TYPE_CHECK_SUB_MENU_ITEM, NULL);
-
-  accessible = ATK_OBJECT (object);
-  atk_object_initialize (accessible, widget);
-
-  return accessible;
-}
-
-static void
-gail_check_sub_menu_item_real_initialize (AtkObject *obj,
-                                          gpointer  data)
-{
-  ATK_OBJECT_CLASS (gail_check_sub_menu_item_parent_class)->initialize (obj, data);
-
-  g_signal_connect (data,
-                    "toggled",
-                    G_CALLBACK (gail_check_sub_menu_item_toggled_gtk),
-                    NULL);
-
-  obj->role = ATK_ROLE_CHECK_MENU_ITEM;
-}
-
-static void
-gail_check_sub_menu_item_toggled_gtk (GtkWidget       *widget)
-{
-  AtkObject *accessible;
-  GtkCheckMenuItem *check_menu_item;
-
-  check_menu_item = GTK_CHECK_MENU_ITEM (widget);
-
-  accessible = gtk_widget_get_accessible (widget);
-  atk_object_notify_state_change (accessible, ATK_STATE_CHECKED, 
-                                  gtk_check_menu_item_get_active (check_menu_item));
-} 
-
-static AtkStateSet*
-gail_check_sub_menu_item_ref_state_set (AtkObject *accessible)
-{
-  AtkStateSet *state_set;
-  GtkCheckMenuItem *check_menu_item;
-  GtkWidget *widget;
-
-  state_set = ATK_OBJECT_CLASS (gail_check_sub_menu_item_parent_class)->ref_state_set (accessible);
-  widget = gtk_accessible_get_widget (GTK_ACCESSIBLE (accessible));
-  if (widget == NULL)
-    return state_set;
-
-  check_menu_item = GTK_CHECK_MENU_ITEM (widget);
-
-  if (gtk_check_menu_item_get_active (check_menu_item))
-    atk_state_set_add_state (state_set, ATK_STATE_CHECKED);
-
-  if (gtk_check_menu_item_get_inconsistent (check_menu_item))
-    {
-      atk_state_set_remove_state (state_set, ATK_STATE_ENABLED);
-      atk_state_set_add_state (state_set, ATK_STATE_INDETERMINATE);
-    }
-  return state_set;
-}
-
-static void
-gail_check_sub_menu_item_real_notify_gtk (GObject           *obj,
-                                          GParamSpec        *pspec)
-{
-  GtkCheckMenuItem *check_menu_item = GTK_CHECK_MENU_ITEM (obj);
-  AtkObject *atk_obj;
-  gboolean sensitive;
-  gboolean inconsistent;
-
-  atk_obj = gtk_widget_get_accessible (GTK_WIDGET (check_menu_item));
-  sensitive = gtk_widget_get_sensitive (GTK_WIDGET (check_menu_item));
-  inconsistent = gtk_check_menu_item_get_inconsistent (check_menu_item);
-
-  if (strcmp (pspec->name, "inconsistent") == 0)
-    {
-      atk_object_notify_state_change (atk_obj, ATK_STATE_INDETERMINATE, inconsistent);
-      atk_object_notify_state_change (atk_obj, ATK_STATE_ENABLED, (sensitive && !inconsistent));
-    }
-  else if (strcmp (pspec->name, "sensitive") == 0)
-    {
-      /* Need to override gailwidget behavior of notifying for ENABLED */
-      atk_object_notify_state_change (atk_obj, ATK_STATE_SENSITIVE, sensitive);
-      atk_object_notify_state_change (atk_obj, ATK_STATE_ENABLED, (sensitive && !inconsistent));
-    }
-  else
-    GAIL_WIDGET_CLASS (gail_check_sub_menu_item_parent_class)->notify_gtk (obj, pspec);
-}
diff --git a/gtk/a11y/gailchecksubmenuitem.h b/gtk/a11y/gailchecksubmenuitem.h
deleted file mode 100644 (file)
index 4f77b98..0000000
+++ /dev/null
@@ -1,53 +0,0 @@
-/* GAIL - The GNOME Accessibility Implementation Library
- * Copyright 2002 Sun Microsystems Inc.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public
- * License along with this library; if not, write to the
- * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
- * Boston, MA 02111-1307, USA.
- */
-
-#ifndef __GAIL_CHECK_SUB_MENU_ITEM_H__
-#define __GAIL_CHECK_SUB_MENU_ITEM_H__
-
-#include "gailsubmenuitem.h"
-
-G_BEGIN_DECLS
-
-#define GAIL_TYPE_CHECK_SUB_MENU_ITEM              (gail_check_sub_menu_item_get_type ())
-#define GAIL_CHECK_SUB_MENU_ITEM(obj)              (G_TYPE_CHECK_INSTANCE_CAST ((obj), GAIL_TYPE_CHECK_SUB_MENU_ITEM, GailCheckSubMenuItem))
-#define GAIL_CHECK_SUB_MENU_ITEM_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), GAIL_TYPE_CHECK_SUB_MENU_ITEM, GailCheckSubMenuItemClass))
-#define GAIL_IS_CHECK_SUB_MENU_ITEM(obj)           (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GAIL_TYPE_CHECK_SUB_MENU_ITEM))
-#define GAIL_IS_CHECK_SUB_MENU_ITEM_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), GAIL_TYPE_CHECK_SUB_MENU_ITEM))
-#define GAIL_CHECK_SUB_MENU_ITEM_GET_CLASS(obj)    (G_TYPE_INSTANCE_GET_CLASS ((obj), GAIL_TYPE_CHECK_SUB_MENU_ITEM, GailCheckSubMenuItemClass))
-
-typedef struct _GailCheckSubMenuItem              GailCheckSubMenuItem;
-typedef struct _GailCheckSubMenuItemClass         GailCheckSubMenuItemClass;
-
-struct _GailCheckSubMenuItem
-{
-  GailSubMenuItem parent;
-};
-
-GType gail_check_sub_menu_item_get_type (void);
-
-struct _GailCheckSubMenuItemClass
-{
-  GailSubMenuItemClass parent_class;
-};
-
-AtkObject* gail_check_sub_menu_item_new (GtkWidget *widget);
-
-G_END_DECLS
-
-#endif /* __GAIL_CHECK_SUB_MENU_ITEM_H__ */
diff --git a/gtk/a11y/gtkcheckmenuitemaccessible.c b/gtk/a11y/gtkcheckmenuitemaccessible.c
new file mode 100644 (file)
index 0000000..7eb9b0f
--- /dev/null
@@ -0,0 +1,123 @@
+/* GAIL - The GNOME Accessibility Implementation Library
+ * Copyright 2002, 2003 Sun Microsystems Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
+#include "config.h"
+
+#include <string.h>
+#include "gtkcheckmenuitemaccessible.h"
+
+
+G_DEFINE_TYPE (GtkCheckMenuItemAccessible, gtk_check_menu_item_accessible, GAIL_TYPE_MENU_ITEM)
+
+static void
+toggled_cb (GtkWidget *widget)
+{
+  AtkObject *accessible;
+  GtkCheckMenuItem *check_menu_item;
+  gboolean active;
+
+  check_menu_item = GTK_CHECK_MENU_ITEM (widget);
+  active = gtk_check_menu_item_get_active (check_menu_item);
+
+  accessible = gtk_widget_get_accessible (widget);
+  atk_object_notify_state_change (accessible, ATK_STATE_CHECKED, active);
+}
+
+static void
+gtk_check_menu_item_accessible_initialize (AtkObject *obj,
+                                           gpointer   data)
+{
+  ATK_OBJECT_CLASS (gtk_check_menu_item_accessible_parent_class)->initialize (obj, data);
+
+  g_signal_connect (data, "toggled", G_CALLBACK (toggled_cb), NULL);
+
+  obj->role = ATK_ROLE_CHECK_MENU_ITEM;
+}
+
+static AtkStateSet *
+gtk_check_menu_item_accessible_ref_state_set (AtkObject *accessible)
+{
+  AtkStateSet *state_set;
+  GtkCheckMenuItem *check_menu_item;
+  GtkWidget *widget;
+
+  widget = gtk_accessible_get_widget (GTK_ACCESSIBLE (accessible));
+  if (widget == NULL)
+    return NULL;
+
+  state_set = ATK_OBJECT_CLASS (gtk_check_menu_item_accessible_parent_class)->ref_state_set (accessible);
+
+  check_menu_item = GTK_CHECK_MENU_ITEM (widget);
+
+  if (gtk_check_menu_item_get_active (check_menu_item))
+    atk_state_set_add_state (state_set, ATK_STATE_CHECKED);
+
+  if (gtk_check_menu_item_get_inconsistent (check_menu_item))
+    {
+      atk_state_set_remove_state (state_set, ATK_STATE_ENABLED);
+      atk_state_set_add_state (state_set, ATK_STATE_INDETERMINATE);
+    }
+
+  return state_set;
+}
+
+static void
+gtk_check_menu_item_accessible_notify_gtk (GObject    *obj,
+                                           GParamSpec *pspec)
+{
+  GtkCheckMenuItem *check_menu_item = GTK_CHECK_MENU_ITEM (obj);
+  AtkObject *atk_obj;
+  gboolean sensitive;
+  gboolean inconsistent;
+
+  atk_obj = gtk_widget_get_accessible (GTK_WIDGET (check_menu_item));
+  sensitive = gtk_widget_get_sensitive (GTK_WIDGET (check_menu_item));
+  inconsistent = gtk_check_menu_item_get_inconsistent (check_menu_item);
+
+  if (strcmp (pspec->name, "inconsistent") == 0)
+    {
+      atk_object_notify_state_change (atk_obj, ATK_STATE_INDETERMINATE, inconsistent);
+      atk_object_notify_state_change (atk_obj, ATK_STATE_ENABLED, (sensitive && !inconsistent));
+    }
+  else if (strcmp (pspec->name, "sensitive") == 0)
+    {
+      /* Need to override gailwidget behavior of notifying for ENABLED */
+      atk_object_notify_state_change (atk_obj, ATK_STATE_SENSITIVE, sensitive);
+      atk_object_notify_state_change (atk_obj, ATK_STATE_ENABLED, (sensitive && !inconsistent));
+    }
+  else
+    GAIL_WIDGET_CLASS (gtk_check_menu_item_accessible_parent_class)->notify_gtk (obj, pspec);
+}
+
+static void
+gtk_check_menu_item_accessible_class_init (GtkCheckMenuItemAccessibleClass *klass)
+{
+  GailWidgetClass *widget_class = (GailWidgetClass*)klass;
+  AtkObjectClass *class = ATK_OBJECT_CLASS (klass);
+
+  widget_class->notify_gtk = gtk_check_menu_item_accessible_notify_gtk;
+
+  class->ref_state_set = gtk_check_menu_item_accessible_ref_state_set;
+  class->initialize = gtk_check_menu_item_accessible_initialize;
+}
+
+static void
+gtk_check_menu_item_accessible_init (GtkCheckMenuItemAccessible *item)
+{
+}
diff --git a/gtk/a11y/gtkcheckmenuitemaccessible.h b/gtk/a11y/gtkcheckmenuitemaccessible.h
new file mode 100644 (file)
index 0000000..8749030
--- /dev/null
@@ -0,0 +1,51 @@
+/* GAIL - The GNOME Accessibility Implementation Library
+ * Copyright 2002 Sun Microsystems Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
+#ifndef __GTK_CHECK_MENU_ITEM_ACCESSIBLE_H__
+#define __GTK_CHECK_MENU_ITEM_ACCESSIBLE_H__
+
+#include "gailmenuitem.h"
+
+G_BEGIN_DECLS
+
+#define GTK_TYPE_CHECK_MENU_ITEM_ACCESSIBLE              (gtk_check_menu_item_accessible_get_type ())
+#define GTK_CHECK_MENU_ITEM_ACCESSIBLE(obj)              (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_CHECK_MENU_ITEM_ACCESSIBLE, GtkCheckMenuItemAccessible))
+#define GTK_CHECK_MENU_ITEM_ACCESSIBLE_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_CHECK_MENU_ITEM_ACCESSIBLE, GtkCheckMenuItemAccessibleClass))
+#define GTK_IS_CHECK_MENU_ITEM_ACCESSIBLE(obj)           (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_CHECK_MENU_ITEM_ACCESSIBLE))
+#define GTK_IS_CHECK_MENU_ITEM_ACCESSIBLE_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_CHECK_MENU_ITEM_ACCESSIBLE))
+#define GTK_CHECK_MENU_ITEM_ACCESSIBLE_GET_CLASS(obj)    (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_CHECK_MENU_ITEM_ACCESSIBLE, GtkCheckMenuItemAccessibleClass))
+
+typedef struct _GtkCheckMenuItemAccessible      GtkCheckMenuItemAccessible;
+typedef struct _GtkCheckMenuItemAccessibleClass GtkCheckMenuItemAccessibleClass;
+
+struct _GtkCheckMenuItemAccessible
+{
+  GailMenuItem parent;
+};
+
+struct _GtkCheckMenuItemAccessibleClass
+{
+  GailMenuItemClass parent_class;
+};
+
+GType gtk_check_menu_item_accessible_get_type (void);
+
+G_END_DECLS
+
+#endif /* __GTK_CHECK_MENU_ITEM_ACCESSIBLE_H__ */
diff --git a/gtk/a11y/gtkchecksubmenuitemaccessible.c b/gtk/a11y/gtkchecksubmenuitemaccessible.c
new file mode 100644 (file)
index 0000000..fe6681b
--- /dev/null
@@ -0,0 +1,124 @@
+/* GAIL - The GNOME Accessibility Implementation Library
+ * Copyright 2002 Sun Microsystems Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
+#include "config.h"
+
+#include <string.h>
+#include <gtk/gtk.h>
+#include "gtkchecksubmenuitemaccessible.h"
+
+
+G_DEFINE_TYPE (GtkCheckSubmenuItemAccessible, gtk_check_submenu_item_accessible, GAIL_TYPE_SUB_MENU_ITEM)
+
+static void
+toggled_cb (GtkWidget *widget)
+{
+  AtkObject *accessible;
+  GtkCheckMenuItem *check_menu_item;
+  gboolean active;
+
+  check_menu_item = GTK_CHECK_MENU_ITEM (widget);
+  active = gtk_check_menu_item_get_active (check_menu_item);
+
+  accessible = gtk_widget_get_accessible (widget);
+  atk_object_notify_state_change (accessible, ATK_STATE_CHECKED, active);
+}
+
+static void
+gtk_check_submenu_item_accessible_initialize (AtkObject *obj,
+                                              gpointer   data)
+{
+  ATK_OBJECT_CLASS (gtk_check_submenu_item_accessible_parent_class)->initialize (obj, data);
+
+  g_signal_connect (data, "toggled", G_CALLBACK (toggled_cb), NULL);
+
+  obj->role = ATK_ROLE_CHECK_MENU_ITEM;
+}
+
+static AtkStateSet *
+gtk_check_submenu_item_accessible_ref_state_set (AtkObject *accessible)
+{
+  AtkStateSet *state_set;
+  GtkCheckMenuItem *check_menu_item;
+  GtkWidget *widget;
+
+  widget = gtk_accessible_get_widget (GTK_ACCESSIBLE (accessible));
+  if (widget == NULL)
+    return NULL;
+
+  state_set = ATK_OBJECT_CLASS (gtk_check_submenu_item_accessible_parent_class)->ref_state_set (accessible);
+
+  check_menu_item = GTK_CHECK_MENU_ITEM (widget);
+
+  if (gtk_check_menu_item_get_active (check_menu_item))
+    atk_state_set_add_state (state_set, ATK_STATE_CHECKED);
+
+  if (gtk_check_menu_item_get_inconsistent (check_menu_item))
+    {
+      atk_state_set_remove_state (state_set, ATK_STATE_ENABLED);
+      atk_state_set_add_state (state_set, ATK_STATE_INDETERMINATE);
+    }
+
+  return state_set;
+}
+
+static void
+gtk_check_submenu_item_accessible_notify_gtk (GObject    *obj,
+                                              GParamSpec *pspec)
+{
+  GtkCheckMenuItem *check_menu_item = GTK_CHECK_MENU_ITEM (obj);
+  AtkObject *atk_obj;
+  gboolean sensitive;
+  gboolean inconsistent;
+
+  atk_obj = gtk_widget_get_accessible (GTK_WIDGET (check_menu_item));
+  sensitive = gtk_widget_get_sensitive (GTK_WIDGET (check_menu_item));
+  inconsistent = gtk_check_menu_item_get_inconsistent (check_menu_item);
+
+  if (strcmp (pspec->name, "inconsistent") == 0)
+    {
+      atk_object_notify_state_change (atk_obj, ATK_STATE_INDETERMINATE, inconsistent);
+      atk_object_notify_state_change (atk_obj, ATK_STATE_ENABLED, (sensitive && !inconsistent));
+    }
+  else if (strcmp (pspec->name, "sensitive") == 0)
+    {
+      /* Need to override gailwidget behavior of notifying for ENABLED */
+      atk_object_notify_state_change (atk_obj, ATK_STATE_SENSITIVE, sensitive);
+      atk_object_notify_state_change (atk_obj, ATK_STATE_ENABLED, (sensitive && !inconsistent));
+    }
+  else
+    GAIL_WIDGET_CLASS (gtk_check_submenu_item_accessible_parent_class)->notify_gtk (obj, pspec);
+}
+
+static void
+gtk_check_submenu_item_accessible_class_init (GtkCheckSubmenuItemAccessibleClass *klass)
+{
+  AtkObjectClass *class = ATK_OBJECT_CLASS (klass);
+  GailWidgetClass *widget_class = (GailWidgetClass*)klass;
+
+  widget_class->notify_gtk = gtk_check_submenu_item_accessible_notify_gtk;
+
+  class->ref_state_set = gtk_check_submenu_item_accessible_ref_state_set;
+  class->initialize = gtk_check_submenu_item_accessible_initialize;
+}
+
+static void
+gtk_check_submenu_item_accessible_init (GtkCheckSubmenuItemAccessible *item)
+{
+}
diff --git a/gtk/a11y/gtkchecksubmenuitemaccessible.h b/gtk/a11y/gtkchecksubmenuitemaccessible.h
new file mode 100644 (file)
index 0000000..91065fc
--- /dev/null
@@ -0,0 +1,51 @@
+/* GAIL - The GNOME Accessibility Implementation Library
+ * Copyright 2002 Sun Microsystems Inc.
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Library General Public
+ * License as published by the Free Software Foundation; either
+ * version 2 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Library General Public License for more details.
+ *
+ * You should have received a copy of the GNU Library General Public
+ * License along with this library; if not, write to the
+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ * Boston, MA 02111-1307, USA.
+ */
+
+#ifndef __GTK_CHECK_SUBMENU_ITEM_ACCESSIBLE_H__
+#define __GTK_CHECK_SUBMENU_ITEM_ACCESSIBLE_H__
+
+#include "gailsubmenuitem.h"
+
+G_BEGIN_DECLS
+
+#define GTK_TYPE_CHECK_SUBMENU_ITEM_ACCESSIBLE              (gtk_check_submenu_item_accessible_get_type ())
+#define GTK_CHECK_SUBMENU_ITEM_ACCESSIBLE(obj)              (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_CHECK_SUBMENU_ITEM_ACCESSIBLE, GtkCheckSubmenuItemAccessible))
+#define GTK_CHECK_SUBMENU_ITEM_ACCESSIBLE_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_CHECK_SUBMENU_ITEM_ACCESSIBLE, GtkCheckSubmenuItemAccessibleClass))
+#define GTK_IS_CHECK_SUBMENU_ITEM_ACCESSIBLE(obj)           (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_CHECK_SUBMENU_ITEM_ACCESSIBLE))
+#define GTK_IS_CHECK_SUBMENU_ITEM_ACCESSIBLE_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_CHECK_SUBMENU_ITEM_ACCESSIBLE))
+#define GTK_CHECK_SUBMENU_ITEM_ACCESSIBLE_GET_CLASS(obj)    (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_CHECK_SUBMENU_ITEM_ACCESSIBLE, GtkCheckSubmenuItemAccessibleClass))
+
+typedef struct _GtkCheckSubmenuItemAccessible      GtkCheckSubmenuItemAccessible;
+typedef struct _GtkCheckSubmenuItemAccessibleClass GtkCheckSubmenuItemAccessibleClass;
+
+struct _GtkCheckSubmenuItemAccessible
+{
+  GailSubMenuItem parent;
+};
+
+struct _GtkCheckSubmenuItemAccessibleClass
+{
+  GailSubMenuItemClass parent_class;
+};
+
+GType gtk_check_submenu_item_accessible_get_type (void);
+
+G_END_DECLS
+
+#endif /* __GTK_CHECK_SUBMENU_ITEM_ACCESSIBLE_H__ */
index 330fd9bb20513912a61e3d2e1785768b70a39a8a..3c1ad4c4cbc8c5dce5f61a8e836042263388344f 100644 (file)
@@ -24,7 +24,7 @@
 #include "gtkradiosubmenuitemaccessible.h"
 
 
-G_DEFINE_TYPE (GtkRadioMenuItemAccessible, gtk_radio_menu_item_accessible, GAIL_TYPE_CHECK_MENU_ITEM)
+G_DEFINE_TYPE (GtkRadioMenuItemAccessible, gtk_radio_menu_item_accessible, GTK_TYPE_CHECK_MENU_ITEM_ACCESSIBLE)
 
 AtkRelationSet *
 gtk_radio_menu_item_accessible_ref_relation_set (AtkObject *obj)
@@ -88,12 +88,22 @@ gtk_radio_menu_item_accessible_ref_relation_set (AtkObject *obj)
   return relation_set;
 }
 
+static void
+gtk_radio_menu_item_accessible_initialize (AtkObject *obj,
+                                           gpointer   data)
+{
+  ATK_OBJECT_CLASS (gtk_radio_menu_item_accessible_parent_class)->initialize (obj, data);
+
+  obj->role = ATK_ROLE_RADIO_MENU_ITEM;
+}
+
 static void
 gtk_radio_menu_item_accessible_class_init (GtkRadioMenuItemAccessibleClass *klass)
 {
   AtkObjectClass *class = ATK_OBJECT_CLASS (klass);
 
   class->ref_relation_set = gtk_radio_menu_item_accessible_ref_relation_set;
+  class->initialize = gtk_radio_menu_item_accessible_initialize;
 }
 
 static void
index 2efcf0a2e0910b03bf2d5115d0e6d79941be6fdc..b174fd74e038b3c1a719c33a024df8da0d6a11c4 100644 (file)
@@ -20,7 +20,7 @@
 #ifndef __GTK_RADIO_MENU_ITEM_ACCESSIBLE_H__
 #define __GTK_RADIO_MENU_ITEM_ACCESSIBLE_H__
 
-#include "gailcheckmenuitem.h"
+#include "gtkcheckmenuitemaccessible.h"
 
 G_BEGIN_DECLS
 
@@ -36,14 +36,14 @@ typedef struct _GtkRadioMenuItemAccessibleClass GtkRadioMenuItemAccessibleClass;
 
 struct _GtkRadioMenuItemAccessible
 {
-  GailCheckMenuItem parent;
+  GtkCheckMenuItemAccessible parent;
 
   GSList *old_group;
 };
 
 struct _GtkRadioMenuItemAccessibleClass
 {
-  GailCheckMenuItemClass parent_class;
+  GtkCheckMenuItemAccessibleClass parent_class;
 };
 
 GType gtk_radio_menu_item_accessible_get_type (void);
index 27e76ebab6c8adb0b38f02c24251dcfffc133649..1e037c45ee8d5036bf85e51c1b3bb4f325564766 100644 (file)
@@ -23,7 +23,7 @@
 #include "gtkradiosubmenuitemaccessible.h"
 
 
-G_DEFINE_TYPE (GtkRadioSubmenuItemAccessible, gtk_radio_submenu_item_accessible, GAIL_TYPE_CHECK_SUB_MENU_ITEM)
+G_DEFINE_TYPE (GtkRadioSubmenuItemAccessible, gtk_radio_submenu_item_accessible, GTK_TYPE_CHECK_SUBMENU_ITEM_ACCESSIBLE)
 
 
 AtkRelationSet *
@@ -87,12 +87,23 @@ gtk_radio_submenu_item_accessible_ref_relation_set (AtkObject *obj)
 
   return relation_set;
 }
+
+static void
+gtk_radio_submenu_item_accessible_initialize (AtkObject *obj,
+                                              gpointer   data)
+{
+  ATK_OBJECT_CLASS (gtk_radio_submenu_item_accessible_parent_class)->initialize (obj, data);
+
+  obj->role = ATK_ROLE_RADIO_MENU_ITEM;
+}
+
 static void
 gtk_radio_submenu_item_accessible_class_init (GtkRadioSubmenuItemAccessibleClass *klass)
 {
   AtkObjectClass *class = ATK_OBJECT_CLASS (klass);
 
   class->ref_relation_set = gtk_radio_submenu_item_accessible_ref_relation_set;
+  class->initialize = gtk_radio_submenu_item_accessible_initialize;
 }
 
 static void
index f614df3ffaccf1dd2caad3d00a22be438d7b866b..70666ce2a2bb1e6a075f6bd460f3b4b216f9ae72 100644 (file)
@@ -20,7 +20,7 @@
 #ifndef __GTK_RADIO_SUBMENU_ITEM_ACCESSIBLE_H__
 #define __GTK_RADIO_SUBMENU_ITEM_ACCESSIBLE_H__
 
-#include "gailchecksubmenuitem.h"
+#include "gtkchecksubmenuitemaccessible.h"
 
 G_BEGIN_DECLS
 
@@ -36,14 +36,14 @@ typedef struct _GtkRadioSubmenuItemAccessibleClass GtkRadioSubmenuItemAccessible
 
 struct _GtkRadioSubmenuItemAccessible
 {
-  GailCheckSubMenuItem parent;
+  GtkCheckSubmenuItemAccessible parent;
 
   GSList *old_group;
 };
 
 struct _GtkRadioSubmenuItemAccessibleClass
 {
-  GailCheckSubMenuItemClass parent_class;
+  GtkCheckSubmenuItemAccessibleClass parent_class;
 };
 
 GType gtk_radio_submenu_item_accessible_get_type (void);
index 614e15d95bd721f1f9c50723e6e8a8a418a860d4..27465f50398478bec3d76ce5839afd469bd21022 100644 (file)
@@ -33,7 +33,8 @@
 #include "gtkmarshalers.h"
 #include "gtkprivate.h"
 #include "gtkintl.h"
-
+#include "a11y/gtkcheckmenuitemaccessible.h"
+#include "a11y/gtkchecksubmenuitemaccessible.h"
 
 /**
  * SECTION:gtkcheckmenuitem
@@ -102,6 +103,24 @@ G_DEFINE_TYPE_WITH_CODE (GtkCheckMenuItem, gtk_check_menu_item, GTK_TYPE_MENU_IT
                          G_IMPLEMENT_INTERFACE (GTK_TYPE_ACTIVATABLE,
                                                 gtk_check_menu_item_activatable_interface_init))
 
+static AtkObject *
+gtk_check_menu_item_get_accessible (GtkWidget *widget)
+{
+  GObject *object;
+  AtkObject *accessible;
+
+  /* FIXME this is not really right, submenus can come and go */
+  if (gtk_menu_item_get_submenu (GTK_MENU_ITEM (widget)))
+    object = g_object_new (GTK_TYPE_CHECK_SUBMENU_ITEM_ACCESSIBLE, NULL);
+  else
+    object = g_object_new (GTK_TYPE_CHECK_MENU_ITEM_ACCESSIBLE, NULL);
+
+  accessible = ATK_OBJECT (object);
+  atk_object_initialize (accessible, widget);
+
+  return accessible;
+}
+
 static void
 gtk_check_menu_item_class_init (GtkCheckMenuItemClass *klass)
 {
@@ -150,7 +169,8 @@ gtk_check_menu_item_class_init (GtkCheckMenuItemClass *klass)
                                                              GTK_PARAM_READABLE));
 
   widget_class->draw = gtk_check_menu_item_draw;
-  
+  widget_class->get_accessible = gtk_check_menu_item_get_accessible;
+
   menu_item_class->activate = gtk_check_menu_item_activate;
   menu_item_class->hide_on_activate = FALSE;
   menu_item_class->toggle_size_request = gtk_check_menu_item_toggle_size_request;
index af2ab5f5252be501cd1237a0c09e4b83c3eade4b..a17a0ee2eec381fd3e725c1a6f66309130ba14b8 100644 (file)
@@ -409,8 +409,6 @@ gtk_radio_menu_item_get_accessible (GtkWidget *widget)
   accessible = ATK_OBJECT (object);
   atk_object_initialize (accessible, widget);
 
-  accessible->role = ATK_ROLE_RADIO_MENU_ITEM;
-
   return accessible;
 }